From e81b7898aca445b77808085c642d18721ba9d1f4 Mon Sep 17 00:00:00 2001 From: justbur Date: Thu, 10 Mar 2016 09:03:35 -0500 Subject: [PATCH] Fix compiler warnings Fixes #106 --- which-key.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/which-key.el b/which-key.el index 138d46b3d40..1971dc9b84c 100644 --- a/which-key.el +++ b/which-key.el @@ -41,8 +41,12 @@ (require 'cl-lib) (require 'button) -(eval-when-compile - (defvar golden-ratio-mode)) +;; For compiler +(defvar evil-operator-shortcut-map) +(defvar evil-operator-state-map) +(defvar evil-motion-state-map) +(defvar golden-ratio-mode) +(declare-function evil-get-command-property "ext:evil-common.el") (defgroup which-key nil "Customization options for which-key-mode" -- 2.30.2